home *** CD-ROM | disk | FTP | other *** search
- function moveAround()
- {
- xpercent = Math.round(_root._xmouse / width * 100);
- ypercent = Math.round(_root._ymouse / height * 100);
- ypos = yrun / 100 * ypercent * -1;
- xpos = xorgin + xrun / 100 * xpercent * -1;
- sharp._y = ypos;
- blur._y = ypos;
- sharp._x = xpos;
- blur._x = xpos;
- }
- width = 760;
- height = 600;
- yrun = 57;
- xrun = 278;
- xorgin = 215;
-